home *** CD-ROM | disk | FTP | other *** search
- * Copyright (c) 1990 by AT&T Bell Telephone Laboratories, Incorporated. */
- * The C++ Answer Book */
- * Tony Hansen */
- * All rights reserved. */
- include <stdio.h>
- include <values.h>
-
- nt main(int, char**)
-
- printf("maxshort=%d\n", MAXSHORT);
- printf("minshort=%d\n", HIBITS);
- printf("maxlong=%d\n", MAXLONG);
- printf("minlong=%d\n", HIBITL);
- printf("maxshort+1=%d\n", MAXSHORT + 1);
- printf("maxlong+1=%d\n", MAXLONG + 1);
- return 0;
-
-